home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / Shareware World / HTML / HTML Voc 1.0 / HTML Vocabulary 1.0 / HTML Vocabulary 1.0.rsrc / TEXT_1500_Pictures.txt < prev    next >
Encoding:
Text File  |  1996-04-17  |  1.9 KB  |  87 lines

  1.  
  2.  Pictures    
  3.  
  4.  
  5.  
  6. <IMG SRC="URL" [...]>
  7.  
  8. Use it to insert pictures inside the pages. The following
  9.  tags can be used after IMG:
  10.  
  11.  
  12.  
  13. SRC="URL"
  14.  
  15. The path or destination to the picture file. Can be the
  16.  whole URL or just the filename, if the file is located
  17.  in the same folder as the rest of the page.
  18.  
  19.  
  20.  
  21. ALT="text"
  22.  
  23. Use it to display text if the picture, by some reason,
  24.  can't be loaded. This happens if the filepath is wrong,
  25.  if the user stops the loading or the browser can't read
  26.  pictures.
  27.  
  28.  
  29.  
  30. LOWSRC="URL"
  31.  
  32. Use it to display a preview of the picture, e.g. a well
  33.  compressed picture. The LOWSRC picture loads first, while
  34.  the SRC picture won't load before the page is done.
  35.  
  36.  
  37.  
  38. HEIGH=n|n%
  39.  
  40. Changes the height of the picture in dots or percent.
  41.  
  42.  WEIDTH=n|n%
  43.  
  44. Changes the height of the picture in dots or percent.
  45.  
  46.  
  47.  
  48. ISMAP
  49.  
  50. Define that the picture is a imagemap, which means that
  51.  it use the picture as links, defined where on the picture
  52.  the user clicks.
  53.  
  54.  
  55.  
  56. BORDER=n
  57.  
  58. Define the width of the border around the picture in dots.
  59.  The picture will only get a border if it is a link.
  60.  
  61.  
  62.  
  63. VSPACE=n
  64.  
  65. Define the vertical space to the text next to the picture.
  66.  
  67.  HSPACE=n
  68.  
  69. Define the horizontal space to the text next to the
  70.  picture.
  71.  
  72.  ALIGN=LEFT|RIGHT|TOP|TEXTTOP|MIDDLE|ABSMIDDLE|BASELINE
  73.  |BOTTOM|ABSBOTTOM
  74.  
  75. Align the picture on the page. Left and right aligns the
  76.  picture to the left resp. right side of the page. TOP
  77.  puts the top side of the picture in the same height as
  78.  the highest thing on the line. TEXTTOP does the same with
  79.  the highest character on the line. MIDDLE centers the
  80.  picture to the baseline of the textline, while ABSMIDDLE
  81.  centers it to the middleline of the text. BASELINE and
  82.  BOTTOM puts the bottom line of the pictures on the same
  83.  height as the baseline of the textline. ABSBOTTOM put it
  84.  on the same height as the bottom thing on the text line,
  85.  e.g. in characters like g, j etc.
  86.  
  87.